include_directories(${YARP_INCLUDE_DIRS})
					
find_package(YARP)

include_directories(${YARP_INCLUDE_DIRS})

add_executable(moveball move_ball.cpp)
target_link_libraries(moveball ${YARP_LIBRARIES})

install(TARGETS moveball RUNTIME DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../bin)



